home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
lang
/
fst-31s
/
lib
/
paths.def
< prev
next >
Wrap
Text File
|
1992-09-24
|
612b
|
23 lines
DEFINITION MODULE Paths;
(* (C) Copyright 1987,1988 Fitted Software Tools. All rights reserved. *)
PROCEDURE Locate( fileName :ARRAY OF CHAR; envPath :ARRAY OF CHAR;
VAR PathAndName :ARRAY OF CHAR; VAR found :BOOLEAN );
(*
following the PATH specified in the envPath evironment string,
try to locate the file fileName.
If the file is located, its complete path name is returned in
PathAndName.
Example:
Locate( "M2ED.CFG", "PATH", pathName, found );
IF found THEN
Lookup( f, pathName );
...
*)
END Paths.